4a8b5dab42f78d25c85c819eff2d212107f3b567,python/edu/src/com/jetbrains/python/edu/PyCharmEduInitialConfigurator.java,PyCharmEduInitialConfigurator,hideActionFromMainMenu,#DefaultMutableTreeNode#CustomActionsSchema#,224

Before Change


        }
      }
      else if ("Navigate".equals(getItemId(menuItem))) {
        final String[] fileItems = {"GotoCustomRegion", "JumpToLastChange", "JumpToNextChange", "SelectIn", "GotoTypeDeclaration",
        "GotoTest", "GotoRelated", "ShowFilePath", "Hierarchy Actions", "Goto Error/Bookmark Actions", "GoToEditPointGroup",
          "Change Navigation Actions", "Method Navigation Actions"};
        for (String item : fileItems) {
          hideAction(schema, root, menuItem, item);
        }
      }
    }

After Change


      }
      else if ("Navigate".equals(getItemId(menuItem))) {
        final HashSet<String>
          navigateItems = ContainerUtil.newHashSet("GotoCustomRegion", "JumpToLastChange", "JumpToNextChange", "SelectIn", "GotoTypeDeclaration",
                                                   "GotoTest", "GotoRelated", "ShowFilePath", "Hierarchy Actions", "Bookmarks",
                                                   "Goto Error/Bookmark Actions","GoToEditPointGroup","Change Navigation Actions",
                                                   "Method Navigation Actions");
        hideActions(schema, root, menuItem, navigateItems);
      }
    }